device.
This allows to run older kernels in a 32on64 mixed environment.
Signed-off-by: Ian Campbell <ian.campbell@xensource.com>
self.console_port = None
self.console_mfn = None
+ self.native_protocol = None
+
self.vmWatch = None
self.shutdownWatch = None
self.shutdownStartTime = None
self.console_mfn = channel_details['console_mfn']
if 'notes' in channel_details:
self.info.set_notes(channel_details['notes'])
+ if 'native_protocol' in channel_details:
+ self.native_protocol = channel_details['native_protocol'];
self._introduceDomain()
'state' : str(xenbusState['Initialising'])
})
+ if self.vm.native_protocol:
+ frontDetails.update({'protocol' : self.vm.native_protocol})
backDetails.update({
'domain' : self.vm.getName(),